.otp-container {
    display: flex;
    gap: 10px;
    margin: 1rem auto;
    width: fit-content;
}

.otp-input {
    width: 50px;
    height: 50px;
    text-align: center;
    font-size: 24px;
    border: 2px solid #ccc;
    border-radius: 5px;
    outline: none;
}

.otp-input:focus {
    border-color: #007bff;
}

.otp-input:disabled {
    background-color: #f1f1f1;
}

.otp-input::placeholder {
    color: transparent;
}

.otp-container.Parrent {
    display: flex;
    flex-direction: column;
    text-align: center;
}

.otpokBtn {
    background-color: rgb(235, 235, 235);
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-weight: 800;
    transition: 0.6s;
    color: rgba(23, 23, 23, 0.824);
}

.otpokBtn:hover {
    background-color: rgb(224, 224, 224);
}

.otpSendSuccess {
    color: green;
}

.otpSendError {
    color: red;
}

.hidden {
    display: none !important;
}

.form-group.div {
    text-align: center;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.phoneBox {
    border-radius: 0.5rem;
}

.resetPasswordParrent {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.resetContainer {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.resetContainer input {
    width: 100%;
    border-radius: 0.5rem;
}

.password-field {
    position: relative;
}

.eye-btn {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    cursor: pointer;
}

.eye-btn i {
    font-size: 20px;
}

.passwordresetBox {
    margin-bottom: 20px;
}
.resetPasswordParrent.profile {
    width: 40%;
}
.passwordresetBox.password .passwordresetBox h2 {
    background-color: aqua;
}
